var runtime.reflectOffs

18 uses

	runtime (current package)
		proc.go#L807: 	lockInit(&reflectOffs.lock, lockRankReflectOffs)
		runtime1.go#L714: 	if reflectOffs.m == nil {
		runtime1.go#L715: 		reflectOffs.m = make(map[int32]unsafe.Pointer)
		runtime1.go#L716: 		reflectOffs.minv = make(map[unsafe.Pointer]int32)
		runtime1.go#L717: 		reflectOffs.next = -1
		runtime1.go#L719: 	id, found := reflectOffs.minv[ptr]
		runtime1.go#L721: 		id = reflectOffs.next
		runtime1.go#L722: 		reflectOffs.next-- // use negative offsets as IDs to aid debugging
		runtime1.go#L723: 		reflectOffs.m[id] = ptr
		runtime1.go#L724: 		reflectOffs.minv[ptr] = id
		type.go#L269: var reflectOffs struct {
		type.go#L277: 	lock(&reflectOffs.lock)
		type.go#L279: 		raceacquire(unsafe.Pointer(&reflectOffs.lock))
		type.go#L285: 		racerelease(unsafe.Pointer(&reflectOffs.lock))
		type.go#L287: 	unlock(&reflectOffs.lock)
		type.go#L308: 	res, found := reflectOffs.m[int32(off)]
		type.go#L340: 		res := reflectOffs.m[int32(off)]
		type.go#L382: 		res := reflectOffs.m[int32(off)]